home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / h / RectSave < prev    next >
Encoding:
Text File  |  1994-11-04  |  747 b   |  28 lines

  1. #ifndef __Shell_RectSave_h
  2. #define __Shell_RectSave_h
  3.  
  4. #ifndef __Shell_h
  5. #include "Shell.Shell.h"
  6. #endif
  7.  
  8.  
  9. void Shell_InitRectSave(
  10.     char        *windowname,    /* Name of savewindow in templates file    */
  11.     icon_handle    dragsprite,
  12.     icon_handle    okbutton,
  13.     icon_handle    cancelbutton,
  14.     icon_handle    filenameicon
  15.     );
  16.     /* Call this after you have loaded your templates file, and    */
  17.     /* it will set up default Event_ handlers for your save window    */
  18.     /* which will be opened when you do a Shift-Click on any Shell_    */
  19.     /* window. This enables you to save any Shell_ rectangle from a    */
  20.     /* Shell_ window to a text-editor or a file.            */
  21.     
  22.     /* NB the save library uses the RO3 message message_MENUSDELETED    */
  23.     /* so might not work too well on RO2...                    */
  24.  
  25.  
  26.  
  27. #endif
  28.